home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :begin
- BfE clear1
- bfe ncsay 15 1 14 1 Olsen Outdoors Software Installer and Document Printer
- bfe box 10 3 14 3 64 9
- bfe ncsay 0 3 16 4 1. Install RACE THE NAGS to Floppy or Hard Disk
- bfe ncsay 0 3 16 5 2. Print RACE THE NAGS Manual
- bfe ncsay 0 3 16 6 3. Print RACE THE NAGS Registration Form
- bfe ncsay 0 3 16 7 4. Print Software Catalog and Order Form
- bfe ncsay 0 3 16 8 5. QUIT this program
- BfE ncsay 14 1 18 11 Please enter the NUMBER of your choice:
- BfE instr 12345
- if errorlevel 53 goto Abort
- if errorlevel 52 goto PrintCat
- if errorlevel 51 goto PrintReg
- if errorlevel 50 goto PrintMan
- if errorlevel 49 goto Install1
- bfe beep
- goto begin
- :Install1
- bfe clear1
- if "%1" == "" goto Install2
- bfe say 15 1 2 1 Ready to install RACE THE NAGS onto your hard disk.
- bfe say 15 1 2 2 The game will be installed in the drive\directory shown
- BfE say 15 1 2 3 below.
- echo "%1"
- bfe ncsay 15 1 2 5 Is this okay? (y-n)
- BfE y-n
- if not errorlevel 89 goto Abort1
- bfe clear1
- bfe say 14 1 10 1 Beginning installation of RACE THE NAGS......
- if not exist %1\nul md %1
- copy *.* %1
- bfe delay3000
- bfe clear0
- echo Installation of RACE THE NAGS has been completed. To run RACE THE NAGS,
- echo first change to the directory "%1" then type NAGS.
- echo.
- echo Please enter the NUMBER of what you want to do next from the list below.
- echo.
- echo.
- echo 1. Quit this program and return to DOS.
- echo 2. Return to the MAIN MENU of this program.
- echo.
- BfE ncsay 14 0 20 12 Please enter either 1 or 2
- BfE instr 12
- if errorlevel 50 goto begin
- goto abort
- :Install2
- bfe clear1
- bfe say 15 1 2 2 Ready to install RACE THE NAGS onto your hard disk. The game will be
- bfe ncsay 15 1 2 3 installed in the drive\directory C:\RTNAGS. Is this okay? (y/n)
- BfE y-n
- if not errorlevel 89 goto Abort1
- bfe clear1
- bfe say 14 1 2 1 beginning installation of RACE THE NAGS to C:\RTNAGS......
- if not exist c:\rtnags\nul md c:\rtnags
- copy *.* c:\rtnags
- bfe delay3000
- cls
- echo Installation of RACE THE NAGS has been completed. Please enter the
- echo NUMBER of what you want to do next from the list below.
- echo.
- echo.
- echo 1. Quit this program and RACE THE NAGS (leave the floppy inserted for now!)
- echo 2. Quit this program and return to DOS.
- echo 3. Return to the MAIN MENU of this program.
- echo.
- BfE ncsay 14 1 2 10 Please enter either 1, 2, or 3
- BfE instr 123
- if errorlevel 51 goto begin
- if errorlevel 50 goto abort
- if errorlevel 49 goto RUNNAGS
- goto begin
- :PrintMan
- bfe clear1
- bfe say 15 1 10 1 Ready to print RACE THE NAGS manual (about 18 pages).
- BfE ncsay 14 1 10 3 Press P to PRINT, any other key to CANCEL.
- BfE
- if not errorlevel 80 goto begin
- bfe say 15 1 10 5 Please wait. Printing RACE THE NAGS users manual....
- copy nags.doc prn
- bfe delay2000
- goto begin
- :PrintReg
- bfe clear1
- bfe say 15 1 10 1 Ready to print RACE THE NAGS registration form.
- BfE ncsay 14 1 10 3 Press P to PRINT, any other key to CANCEL.
- BfE
- if not errorlevel 80 goto begin
- bfe say 15 1 10 5 Please wait. Printing RACE THE NAGS registration form.....
- copy register.txt prn
- bfe delay2000
- goto begin
- :PrintCat
- bfe clear1
- bfe say 15 1 15 1 Ready to print Software Catalog and Order Form.
- BfE ncsay 14 1 15 3 Press P to PRINT, any other key to CANCEL:
- bfe
- if not errorlevel 80 goto begin
- bfe say 10 1 15 5 Please wait. Printing Software Catalog and Order Form.....
- copy orderfrm.txt prn
- bfe delay2000
- goto begin
- :Abort1
- cls
- echo Cancelling RACE THE NAGS installation.
- echo.
- echo To specify a directory other than C:\RTNAGS, restart the INSTALL program
- echo with a command similar to this:
- echo.
- BfE say 14 1 20 6 INSTALL (drive)\(directory)
- echo.
- echo where (drive) specifies the hard disk drive you want (C:, D: etc.)
- echo followed by a back-slash (\ with no spaces) and the name of the
- echo directory to install it in (again with no spaces).
- echo.
- goto finish
- :RUNNAGS1
- cd %1
- %1\nags
- goto finish
- :RUNNAGS
- c:
- cd \rtnags
- nags
- goto finish
- :abort
- cls
- :finish